home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / amiexpress / source / ae / code / acp3.00 / request.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-18  |  397 b   |  27 lines

  1. #include <exec/types.h>
  2. #include <intuition/intuition.h>
  3.  
  4. #include <clib/exec_protos.h>
  5. #include <clib/intuition_protos.h>
  6.  
  7. #include <stdio.h>
  8.  
  9.  
  10. struct EasyStruct myES=
  11. {
  12.    sizeof(struct EasyStruct),
  13.    0,
  14.    "ACP Notification",
  15.    0,
  16.    "Continue",
  17. };
  18. extern struct IntuitionBase *IntuitionBase;
  19.  
  20. void myrequest(char *s)
  21. {
  22.      myES.es_TextFormat=(APTR)s;
  23.      EasyRequest(NULL,&myES,NULL);
  24.  
  25.  
  26. }
  27.